home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gxclip2.c < prev    next >
C/C++ Source or Header  |  1996-11-26  |  11KB  |  375 lines

  1. /* Copyright (C) 1993, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gxclip2.c */
  20. /* Mask clipping for patterns */
  21. #include "memory_.h"
  22. #include "gx.h"
  23. #include "gserrors.h"
  24. #include "gsstruct.h"
  25. #include "gxdevice.h"
  26. #include "gxdevmem.h"
  27. #include "gxclip2.h"
  28.  
  29. private_st_device_tile_clip();
  30.  
  31. /* Device procedures */
  32. private dev_proc_fill_rectangle(tile_clip_fill_rectangle);
  33. private dev_proc_copy_mono(tile_clip_copy_mono);
  34. private dev_proc_copy_color(tile_clip_copy_color);
  35. private dev_proc_copy_alpha(tile_clip_copy_alpha);
  36. private dev_proc_strip_copy_rop(tile_clip_strip_copy_rop);
  37.  
  38. /* The device descriptor. */
  39. private const gx_device_tile_clip gs_tile_clip_device =
  40. {    std_device_std_body_open(gx_device_tile_clip, 0, "tile clipper",
  41.       0, 0, 1, 1),
  42.     {    gx_default_open_device,
  43.         gx_forward_get_initial_matrix,
  44.         gx_default_sync_output,
  45.         gx_default_output_page,
  46.         gx_default_close_device,
  47.         gx_forward_map_rgb_color,
  48.         gx_forward_map_color_rgb,
  49.         tile_clip_fill_rectangle,
  50.         gx_default_tile_rectangle,
  51.         tile_clip_copy_mono,
  52.         tile_clip_copy_color,
  53.         gx_default_draw_line,
  54.         gx_default_get_bits,
  55.         gx_forward_get_params,
  56.         gx_forward_put_params,
  57.         gx_forward_map_cmyk_color,
  58.         gx_forward_get_xfont_procs,
  59.         gx_forward_get_xfont_device,
  60.         gx_forward_map_rgb_alpha_color,
  61.         gx_forward_get_page_device,
  62.         gx_forward_get_alpha_bits,
  63.         tile_clip_copy_alpha,
  64.         gx_forward_get_band,
  65.         gx_default_copy_rop,
  66.         gx_default_fill_path,
  67.         gx_default_stroke_path,
  68.         gx_default_fill_mask,
  69.         gx_default_fill_trapezoid,
  70.         gx_default_fill_parallelogram,
  71.         gx_default_fill_triangle,
  72.         gx_default_draw_thin_line,
  73.         gx_default_begin_image,
  74.         gx_default_image_data,
  75.         gx_default_end_image,
  76.         gx_default_strip_tile_rectangle,
  77.         tile_clip_strip_copy_rop,
  78.         gx_forward_get_clipping_box
  79.     }
  80. };
  81.  
  82. /* Initialize a tile clipping device from a mask. */
  83. int
  84. tile_clip_initialize(gx_device_tile_clip *cdev, const gx_strip_bitmap *tiles,
  85.   gx_device *idev, int px, int py)
  86. {    int buffer_width = tiles->size.x;
  87.     int buffer_height =
  88.       tile_clip_buffer_size / (tiles->raster + sizeof(byte *));
  89.  
  90.     *cdev = gs_tile_clip_device;
  91.     cdev->width = idev->width;
  92.     cdev->height = idev->height;
  93.     cdev->color_info = idev->color_info;
  94.     cdev->target = idev;
  95.     cdev->tiles = *tiles;
  96.     tile_clip_set_phase(cdev, px, py);
  97.     if ( buffer_height > tiles->size.y )
  98.       buffer_height = tiles->size.y;
  99.     gs_make_mem_mono_device(&cdev->mdev, 0, 0);
  100.     for ( ; ; )
  101.       {    if ( buffer_height <= 0 )
  102.           { /*
  103.              * The tile is too wide to buffer even one scan line.
  104.              * We could do copy_mono in chunks, but for now, we punt.
  105.              */
  106.             cdev->mdev.base = 0;
  107.             return 0;
  108.           }
  109.         cdev->mdev.width = buffer_width;
  110.         cdev->mdev.height = buffer_height;
  111.         if ( gdev_mem_bitmap_size(&cdev->mdev) <= tile_clip_buffer_size )
  112.           break;
  113.         buffer_height--;
  114.       }
  115.     cdev->mdev.base = cdev->buffer.bytes;
  116.     return (*dev_proc(&cdev->mdev, open_device))((gx_device *)&cdev->mdev);
  117. }
  118.  
  119. /* Set the phase of the tile. */
  120. void
  121. tile_clip_set_phase(gx_device_tile_clip *cdev, int px, int py)
  122. {    cdev->phase.x = px;
  123.     cdev->phase.y = py;
  124. }
  125.  
  126. #define cdev ((gx_device_tile_clip *)dev)
  127.  
  128. /* Fill a rectangle by tiling with the mask. */
  129. private int
  130. tile_clip_fill_rectangle(gx_device *dev, int x, int y, int w, int h,
  131.   gx_color_index color)
  132. {    gx_device *tdev = cdev->target;
  133.     return (*dev_proc(tdev, strip_tile_rectangle))(tdev, &cdev->tiles,
  134.         x, y, w, h,
  135.         gx_no_color_index, color, cdev->phase.x, cdev->phase.y);
  136. }
  137.  
  138. /* Calculate the X offset corresponding to a given Y, taking the phase */
  139. /* and shift into account. */
  140. #define x_offset(ty, cdev)\
  141.   ((cdev)->phase.x + (((ty) + (cdev)->phase.y) / (cdev)->tiles.rep_height) *\
  142.    (cdev)->tiles.rep_shift)
  143.  
  144. /* Copy a monochrome bitmap.  We divide it up into maximal chunks */
  145. /* that line up with a single tile, and then do the obvious Boolean */
  146. /* combination of the tile mask and the source. */
  147. private int
  148. tile_clip_copy_mono(gx_device *dev,
  149.   const byte *data, int sourcex, int raster, gx_bitmap_id id,
  150.   int x, int y, int w, int h,
  151.   gx_color_index color0, gx_color_index color1)
  152. {    gx_color_index color, mcolor0, mcolor1;
  153.     int ty, ny;
  154.     int code;
  155.  
  156.     if ( cdev->mdev.base == 0 )
  157.       { /*
  158.          * The tile was too large for us to buffer even one scan line.
  159.          * Punt to the very, very slow default implementation of
  160.          * copy_mono.
  161.          */
  162.         return gx_default_copy_mono(dev, data, sourcex, raster, id,
  163.                     x, y, w, h, color0, color1);
  164.       }
  165.     if ( color1 != gx_no_color_index )
  166.     {    if ( color0 != gx_no_color_index )
  167.         {    /* Pre-fill with color0. */
  168.             code = tile_clip_fill_rectangle(dev, x, y, w, h, color0);
  169.             if ( code < 0 )
  170.               return code;
  171.         }
  172.         color = color1;
  173.         mcolor0 = 0, mcolor1 = gx_no_color_index;
  174.     }
  175.     else if ( color0 != gx_no_color_index )
  176.     {    color = color0;
  177.         mcolor0 = gx_no_color_index, mcolor1 = 0;
  178.     }
  179.     else
  180.         return 0;
  181.     for ( ty = y; ty < y + h; ty += ny )
  182.     {    int tx, nx;
  183.         int cy = (ty + cdev->phase.y) % cdev->tiles.rep_height;
  184.         int xoff = x_offset(ty, cdev);
  185.  
  186.         ny = min(y + h - ty, cdev->tiles.size.y - cy);
  187.         if ( ny > cdev->mdev.height )
  188.             ny = cdev->mdev.height;
  189.         for ( tx = x; tx < x + w; tx += nx )
  190.         {    int cx = (tx + xoff) % cdev->tiles.rep_width;
  191.             nx = min(x + w - tx, cdev->tiles.size.x - cx);
  192.             /* Copy a tile slice to the memory device buffer. */
  193.             memcpy(cdev->buffer.bytes,
  194.                    cdev->tiles.data + cy * cdev->tiles.raster,
  195.                    cdev->tiles.raster * ny);
  196.             /* Intersect the tile with the source data. */
  197.             /* mcolor0 and mcolor1 invert the data if needed. */
  198.             /* This call can't fail. */
  199.             (*dev_proc(&cdev->mdev, copy_mono))((gx_device *)&cdev->mdev,
  200.               data + (ty - y) * raster, sourcex + tx - x,
  201.               raster, gx_no_bitmap_id,
  202.               cx, 0, nx, ny, mcolor0, mcolor1);
  203.             /* Now copy the color through the double mask. */
  204.             code = (*dev_proc(cdev->target, copy_mono))(cdev->target,
  205.               cdev->buffer.bytes, cx, cdev->tiles.raster,
  206.               gx_no_bitmap_id,
  207.               tx, ty, nx, ny, gx_no_color_index, color);
  208.             if ( code < 0 )
  209.               return code;
  210.         }
  211.     }
  212.     return 0;
  213. }
  214.  
  215. /* Copy a color rectangle.  We can't use the BitBlt tricks; we have to */
  216. /* scan for runs of 1s.  There are many obvious ways to speed this up; */
  217. /* we'll implement some if we need to. */
  218. private int
  219. tile_clip_copy_color(gx_device *dev,
  220.   const byte *data, int sourcex, int raster, gx_bitmap_id id,
  221.   int x, int y, int w, int h)
  222. {    const byte *data_row = data;
  223.     int cy = (y + cdev->phase.y) % cdev->tiles.rep_height;
  224.     const byte *tile_row = cdev->tiles.data + cy * cdev->tiles.raster;
  225.     int ty;
  226.  
  227.     for ( ty = y; ty < y + h; ty++, data_row += raster )
  228.     {    int cx = (x + x_offset(ty, cdev)) % cdev->tiles.rep_width;
  229.         const byte *tp = tile_row + (cx >> 3);
  230.         byte tbit = 0x80 >> (cx & 7);
  231.         int tx;
  232.         int code;
  233.  
  234.         for ( tx = x; tx < x + w; )
  235.         {    int tx1;
  236. #define t_next()\
  237.   if ( ++cx == cdev->tiles.size.x )\
  238.     cx = 0, tp = tile_row, tbit = 0x80;\
  239.   else if ( (tbit >>= 1) == 0 )\
  240.     tp++, tbit = 0x80;\
  241.   tx++
  242.             /* Skip a run of 0s. */
  243.             while ( tx < x + w && (*tp & tbit) == 0 )
  244.             {    t_next();
  245.             }
  246.             if ( tx == x + w )
  247.                 break;
  248.             /* Scan a run of 1s. */
  249.             tx1 = tx;
  250.             do
  251.             {    t_next();
  252.             }
  253.             while ( tx < x + w && (*tp & tbit) != 0 );
  254.             /* Copy the run. */
  255.             code = (*dev_proc(cdev->target, copy_color))(cdev->target,
  256.               data_row, sourcex + tx1 - x, raster,
  257.               gx_no_bitmap_id, tx1, ty, tx - tx1, 1);
  258.             if ( code < 0 )
  259.               return code;
  260.         }
  261.         if ( ++cy == cdev->tiles.size.y )
  262.             cy = 0, tile_row = cdev->tiles.data;
  263.         else
  264.             tile_row += cdev->tiles.raster;
  265.     }
  266.  
  267.     return 0;
  268. }
  269.  
  270. /* Copy an alpha rectangle similarly. */
  271. private int
  272. tile_clip_copy_alpha(gx_device *dev,
  273.   const byte *data, int sourcex, int raster, gx_bitmap_id id,
  274.   int x, int y, int w, int h, gx_color_index color, int depth)
  275. {    const byte *data_row = data;
  276.     int ty;
  277.  
  278.     for ( ty = y; ty < y + h; ty++, data_row += raster )
  279.     {    const byte *tile_row = cdev->tiles.data +
  280.             ((ty + cdev->phase.y) % cdev->tiles.rep_height) *
  281.             cdev->tiles.raster;
  282.         int cx = (x + x_offset(ty, cdev)) % cdev->tiles.rep_width;
  283.         const byte *tp = tile_row + (cx >> 3);
  284.         byte tbit = 0x80 >> (cx & 7);
  285.         int tx;
  286.         int code;
  287.  
  288.         for ( tx = x; tx < x + w; )
  289.         {    int tx1;
  290. #define t_next()\
  291.   if ( ++cx == cdev->tiles.size.x )\
  292.     cx = 0, tp = tile_row, tbit = 0x80;\
  293.   else if ( (tbit >>= 1) == 0 )\
  294.     tp++, tbit = 0x80;\
  295.   tx++
  296.             /* Skip a run of 0s. */
  297.             while ( tx < x + w && (*tp & tbit) == 0 )
  298.             {    t_next();
  299.             }
  300.             if ( tx == x + w )
  301.                 break;
  302.             /* Scan a run of 1s. */
  303.             tx1 = tx;
  304.             do
  305.             {    t_next();
  306.             }
  307.             while ( tx < x + w && (*tp & tbit) != 0 );
  308.             /* Copy the run. */
  309.             code = (*dev_proc(cdev->target, copy_alpha))(cdev->target,
  310.               data_row, sourcex + tx1 - x, raster,
  311.               gx_no_bitmap_id, tx1, ty, tx - tx1, 1,
  312.               color, depth);
  313.             if ( code < 0 )
  314.               return code;
  315.         }
  316.     }
  317.  
  318.     return 0;
  319. }
  320.  
  321. /* Copy a RasterOp rectangle similarly. */
  322. private int
  323. tile_clip_strip_copy_rop(gx_device *dev,
  324.   const byte *data, int sourcex, uint raster, gx_bitmap_id id,
  325.   const gx_color_index *scolors,
  326.   const gx_strip_bitmap *textures, const gx_color_index *tcolors,
  327.   int x, int y, int w, int h,
  328.   int phase_x, int phase_y, gs_logical_operation_t lop)
  329. {    const byte *data_row = data;
  330.     int ty;
  331.  
  332.     for ( ty = y; ty < y + h; ty++, data_row += raster )
  333.     {    const byte *tile_row = cdev->tiles.data +
  334.             ((ty + cdev->phase.y) % cdev->tiles.rep_height) *
  335.             cdev->tiles.raster;
  336.         int cx = (x + x_offset(ty, cdev)) % cdev->tiles.rep_width;
  337.         const byte *tp = tile_row + (cx >> 3);
  338.         byte tbit = 0x80 >> (cx & 7);
  339.         int tx;
  340.         int code;
  341.  
  342.         for ( tx = x; tx < x + w; )
  343.         {    int tx1;
  344. #define t_next()\
  345.   if ( ++cx == cdev->tiles.size.x )\
  346.     cx = 0, tp = tile_row, tbit = 0x80;\
  347.   else if ( (tbit >>= 1) == 0 )\
  348.     tp++, tbit = 0x80;\
  349.   tx++
  350.             /* Skip a run of 0s. */
  351.             while ( tx < x + w && (*tp & tbit) == 0 )
  352.             {    t_next();
  353.             }
  354.             if ( tx == x + w )
  355.                 break;
  356.             /* Scan a run of 1s. */
  357.             tx1 = tx;
  358.             do
  359.             {    t_next();
  360.             }
  361.             while ( tx < x + w && (*tp & tbit) != 0 );
  362.             /* Copy the run. */
  363.             code = (*dev_proc(cdev->target, strip_copy_rop))
  364.               (cdev->target,
  365.                data_row, sourcex + tx1 - x, raster,
  366.                gx_no_bitmap_id, scolors, textures, tcolors,
  367.                tx1, ty, tx - tx1, 1, phase_x, phase_y, lop);
  368.             if ( code < 0 )
  369.               return code;
  370.         }
  371.     }
  372.  
  373.     return 0;
  374. }
  375.